翻訳と辞書
Words near each other
・ Check Please
・ Check Point
・ Check Point GO
・ Check Point Integrity
・ Check Point IPSO
・ Cheburashka Goes to School
・ Chebychev–Grübler–Kutzbach criterion
・ Chebyshev (crater)
・ Chebyshev (disambiguation)
・ Chebyshev center
・ Chebyshev distance
・ Chebyshev equation
・ Chebyshev filter
・ Chebyshev function
・ Chebyshev integral
Chebyshev iteration
・ Chebyshev linkage
・ Chebyshev nodes
・ Chebyshev polynomials
・ Chebyshev pseudospectral method
・ Chebyshev rational functions
・ Chebyshev's bias
・ Chebyshev's inequality
・ Chebyshev's Lambda Mechanism
・ Chebyshev's sum inequality
・ Chebyshev's theorem
・ Chebyshev–Gauss quadrature
・ Chebyshev–Markov–Stieltjes inequalities
・ Chebzie
・ Cheb–Hranice v Čechách railway


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Chebyshev iteration : ウィキペディア英語版
Chebyshev iteration
In numerical linear algebra, the Chebyshev iteration is an
iterative method for determining the solutions of a system of linear equations. The method is named after Russian mathematician Pafnuty Chebyshev.
Chebyshev iteration avoids the computation of inner products as is necessary for the other nonstationary methods. For some distributed-memory architectures these inner products are a bottleneck with respect to efficiency. The price one pays for avoiding inner products is that the method requires enough knowledge about spectrum of the coefficient matrix ''A'', that is an upper estimate for the upper eigenvalue and lower estimate for the lower eigenvalue. There are modifications of the method for nonsymmetric matrices ''A''.
==Example code in MatLab==


function () = SolChebyshev002(A,b,x0,iterNum,lMax,lMin)
d=(lMax+lMin)/2;
c=(lMax-lMin)/2;
preCond=eye(size(A)); %preconditioner
x=x0;
r=b-A
*x;
for i = 1:iterNum % size(A,1)
z = linsolve(preCond,r);
if (i==1)
p=z;
alpha=1/d;
else
beta=(c
*alpha/2)^2;
alpha=1/(d - beta/alpha);
p=z+beta
*p;
end;
x=x+alpha
*p;
r=b-A
*x; %(=r-alpha
*A
*p)
if (norm(r)<1e-15), break; end; %stop if necessary
end;
end

Code translated from

and
.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Chebyshev iteration」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.